home *** CD-ROM | disk | FTP | other *** search
- #****************************************************************************#
- # #
- # Make file for ZORTECH C/C++ 16 Bit #
- # #
- #****************************************************************************#
-
- #memory model
-
- model = s #small
-
- #CPU
-
- cpu = 2 #286
-
- #name the compiler
-
- CC = ztc
- CFLAGS = -A -w1 -a2 -o+time -m$(model) -$(cpu)
-
- #linker
-
- LINK = blink
- LNKOPT =
-
- #implicit rules
-
- .c.obj :
- $(CC) -c $(CFLAGS) $*
-
- #executable files
-
- all: vmsc.exe
-
- # explicit rules
-
- vmsc.exe : vmsc.obj getopt.obj hpwd.obj
- $(LINK) $(LNKOPT) vmsc.obj+getopt.obj+hpwd.obj,vmsc.exe;
-
- vmsc.obj : vmsc.c mytypes.h getopt.h sysuaf.h hpwd.h
-
- getopt.obj : getopt.c
-
- hpwd.obj : hpwd.c hpwd.h mytypes.h
-